Skip to main content

program

Table: program

The program table stores information about different programs.
It is used to manage and identify programs within the system.


Columns

Column NameData TypeConstraintsDescription
programIdint(11)NOT NULL, PRIMARY KEY, AUTO_INCREMENTUnique identifier for each program
namevarchar(100)NOT NULLName of the program
createdDatetimestampNULL, DEFAULT CURRENT_TIMESTAMPTimestamp when the program record was created

Indexes

  1. PRIMARY - Primary key on programId

Foreign Key Relations

None


Usage Notes

  • This table serves as a reference for programs in the system.
  • programId is used to link program-specific data in other tables.
  • createdDate helps track when programs are added.